var OnlineStoreProductReviewModule = { add_review: function (product, rating, customer_name, notes, callback_success, callback_error) { var module = this; var data = { product: product, rating: rating, customer_name: customer_name, notes: notes, }; OnlineStoreApiModule.make_api_post_request_processing_data(ONLINE_STORE_API_ADD_REVIEW_URL_SEGMENT, data, function (response) { if (typeof callback_success === 'function') { callback_success(response); } }, function (response) { if (typeof callback_error === 'function') { callback_error(response); } }); }, };